' Copy and paste this into a GMT script verifier window
' to test v1.1's new enhanced error finder, as well as
' to test the bug fixes in v1.2


' Begin enhanced error finder

   test=0
   PICT -8
   DELAY -5
   DOMENU BARF
   GOTOCARD 315
   HIDEAREA 7
   HIDEBUTTON 9
   MOVEAREA 8 53 48
   NOTE 65 65 985
   NOTE 235 65 50
   SETAREA 14 65 54 54 89
   SHOWBUTTON -3
   SHOWAREA 456456
   STATUSBAR 3 456
   STOP TERRORISM

' end enhanced error finder


' begin appleevent bug fix test. you should not get any errors
' about "not enough ON <events> or anything like that.

   BEGIN APPLEEVENT
   END TIMER
   ON TIMER
   END IF
   ELSE
   END APPLEEVENT

' end appleevent bug fix test


' begin variable too small number test
' you should not get an error that the value is too small

   DELAY variable

' end variable too small number test


' begin stopalert test
' you should not get an error about "invalid STOP parameter'

   STOPALERT blah

' end stopalert test